home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_09
/
8n09113a
< prev
next >
Wrap
Text File
|
1990-06-18
|
873b
|
44 lines
******
Listing 2
#define true 1
#define false 0
main()
{
int initialization = true;
if (initialization == true)
{
/*Start the memory tests. */
printf("Call RANDOM ACCESS MEMORY test function x.1.1.1.\n");
x1_1_1();
printf("Call MASS MEMORY test function X.1.1.2.\n");
x1_1_2();
printf("Call FPROM PROGRAM MEMORY test function X.1.1.3.\n");
x1_1_3();
/* End the memory tests. */
printf("Call I/O SETUP function X.1.2\n");
x1_2();
printf("Call SET HARDWARE PARAMETERS function X.1.4.1.\n");
x1_4_();
printf("Call SET SOFTWARE PARAMETERS function X.1.4.2.\n");
x1_4_2();
printf("The END of ALL INITIALIZATION functions.\n");
printf("Enable the Programmable Interrupt Controller.\n");
initialization = false;
}
}
********